home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / business / blitzbank / installenglish < prev    next >
Text File  |  1995-11-28  |  1KB  |  69 lines

  1.  
  2. (welcome)
  3.  
  4. (set PROGNAME "BlitzBank")
  5.  
  6. (set path
  7.    (askdir
  8.       (prompt ("In which Directory Would you like to install %s ?" PROGNAME) )
  9.       (help
  10.          "all files will be copied directly to this directory."
  11.       )
  12.       (default "dh1:")
  13.    )
  14. )
  15.  
  16. ; Install main program files
  17.  
  18. (set path.source (pathonly @icon) )
  19.  
  20. (copyfiles
  21.    (prompt ("Copying Files To %s" path))
  22.    (help   "")
  23.    (choices
  24.    "datas"
  25.    "Doc"
  26.    "Doc.info"
  27.    "BlitzBank"
  28.    "BlitzBank.prefs"
  29.    "BlitzBank.im"
  30.    "BlitzBank.info"
  31.    "Exemple.cpt"
  32.    "Exemple.cpt.info")
  33.    (source path.source)
  34.    (dest path)
  35. )
  36.  
  37. (complete 80)
  38.  
  39. (copyfiles
  40.    (prompt "Copying Fonts")
  41.    (help ""
  42.    )
  43.    (choices "BlitzBank" "BlitzBank.font" )
  44.    (source "fonts/")
  45.    (dest "FONTS:")
  46.    (infos)
  47.    (optional nofail)
  48. )
  49.  
  50. (complete 90)
  51.  
  52. (startup
  53.    PROGNAME
  54.    (prompt "I am going to update your User-Startup..."
  55.  
  56.    )
  57.    (help
  58.       "Select PROCEED to have the Assign command in your User-Startup."
  59.    )
  60.    (command ("assign blitzbank: %s" path))
  61. )
  62.  
  63. (complete 100)
  64.  
  65. (exit
  66.    "Now, reboot your Amiga and double click on BlitzBank... "
  67.    ("in the directory %s" path)
  68. )
  69.